73a98077f65ae389f479d3545d13a261f167e742,src/frontend/org/voltdb/ExecutionSite.java,ExecutionSite,processInitiateTask,#TransactionState#VoltMessage#,2245
Before Change
}
// if enabled, send a record of this invocation to the secondary/dr cluster
// if not enabled, should be a noop
m_partitionDRGateway.onSuccessfulProcedureCall(itask.getTxnId(), itask.getStoredProcedureInvocation(), cr);
}
}
catch (final ExpectedProcedureException e) {
After Change
}
// if enabled, send a record of this invocation to the secondary/dr cluster
// if not enabled, should be a noop
if (!itask.isReadOnly()) {
m_partitionDRGateway.onSuccessfulProcedureCall(itask.getTxnId(), itask.getStoredProcedureInvocation(), cr);
}
}
}